home *** CD-ROM | disk | FTP | other *** search
/ AMP Graphics Collection / AMP Graphics Collection.iso / programs / author / versions / testd4.dir / 00012_Script_12 < prev    next >
Text File  |  1996-08-09  |  221b  |  10 lines

  1. on stripReturns s
  2.   put the number of lines in s into theLines
  3.   if theLines < 2 then return s
  4.   set outS to ""
  5.   repeat with i = 1 to theLines
  6.     put line i of s & " " after outS
  7.   end repeat
  8.   return outS
  9. end
  10.